home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2004 #6 / Amiga Plus CD - 2004 - No. 06.iso / AmigaPlus / Begleitmaterial / 50Tools / Grafik / PerfectPaint / rexx / Alchemy / Script / FastPaint.rx < prev    next >
Text File  |  2001-10-23  |  646b  |  45 lines

  1. /* Alchemy script
  2. 100
  3. 1
  4. 4
  5. */
  6.  
  7.     options results
  8.   parse ARG Port x1 y1 x2 y2 type b
  9.     ADDRESS value Port
  10.  
  11.     pp_AvoidRefresh    
  12.     pp_Progresstext 'FastPaint'
  13.  
  14.     pp_UpdateUndoBox x1-1 y1-1 x2+1 y2+1
  15.  
  16.     pp_ComposeReqOff
  17.     pp_Compose 0 100 0
  18.     pp_EffectOn
  19.     
  20.     pp_Mosaic (type+1)*4
  21.     pp_Progress 1 7
  22.     pp_BoxF x1 y1 x2 y2
  23.     pp_Displace (type+1)*5
  24.     pp_Progress 2 7
  25.     pp_BoxF x1 y1 x2 y2
  26.     pp_Median 2
  27.     pp_Progress 3 7
  28.     pp_BoxF x1 y1 x2 y2
  29.     pp_Maximum 1
  30.     pp_Progress 4 7
  31.     pp_BoxF x1 y1 x2 y2
  32.     pp_Displace 3
  33.     pp_Progress 5 7
  34.     pp_BoxF x1 y1 x2 y2
  35.     pp_Median 2
  36.     pp_Progress 6 7
  37.     pp_BoxF x1 y1 x2 y2
  38.  
  39.     pp_EffectOff
  40.     pp_ComposeReqOn
  41.     pp_PermitRefresh
  42.     pp_ProgressClr
  43.  
  44.     Exit
  45.